home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.Locator < prev    next >
Encoding:
Text File  |  1993-06-15  |  2.2 KB  |  85 lines  |  [TEXT/MPS ]

  1. ; File:  E16.Locator
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-93
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. toolNotFoundErr GEQU $0001
  9. funcNotFoundErr GEQU $0002
  10. sysStrtMtErr GEQU $0100 ; can't mount system startup volume
  11. tlBadRecFlag GEQU $0103 ; StartStop record invalid
  12. tlCantLoad GEQU $0104 ; A tool cannot be loaded
  13. toolVersionErr GEQU $0110
  14. messNotFoundErr GEQU $0111
  15. messageOvfl GEQU $0112 ; No message numbers available
  16. nameTooLong GEQU $0113 ; Message name too long
  17. reqNotAccepted GEQU $0120 ;SendRequest request not accepted
  18. duplicateName GEQU $0121 ;duplicate name for AcceptRequests
  19. invalidSendRequest GEQU $0122 ;bad combo of target and sendHow
  20.  
  21. fileInfoType GEQU $0001 ; Message type parameter
  22. addMessage GEQU $0001 ; action parameter
  23. getMessage GEQU $0002 ; action parameter
  24. deleteMessage GEQU $0003 ; action parameter
  25. fileInfoTypeGS GEQU $0011 ; Message Type parameter
  26.  
  27. ; GetMsgHandle flags values
  28. gmhByIndex GEQU 0
  29. gmhByType GEQU 1
  30. gmhByName GEQU 2
  31.  
  32. ; SendRequest/AcceptRequests codes
  33. systemSaysBeep GEQU $0001 ;used by SysBeep2
  34. systemSaysUnknownDisk GEQU $0002 ;used by HandleDiskInsert
  35. srqGoAway GEQU $0003
  36. srqGetrSoundSample GEQU $0004
  37. srqSynchronize GEQU $0005
  38. srqPlayrSoundSample GEQU $0006
  39. systemSaysNewDeskMsg GEQU $0008
  40. systemSaysEjectingDev GEQU $000E
  41. systemSaysDeskStartUp GEQU $0502
  42. systemSaysDeskShutDown GEQU $0503
  43. systemSaysFixedAppleMenu GEQU $051E
  44. systemSaysMenuKey GEQU $0F01
  45. systemSaysDoClipboard GEQU $000C
  46. systemSaysForceUndim GEQU $000D
  47. srqOpenOrPrint GEQU $0010
  48. srqQuit GEQU $0011
  49. systemSaysGetSysIcon GEQU $1201
  50.  
  51. ; SendRequest sendHow values
  52. stopAfterOne GEQU $8000
  53. sendToAll GEQU 0
  54. sendToName GEQU 1
  55. sendToUserID GEQU 2
  56.  
  57. ; StartUpTools flag bits
  58. leaveScreenClean GEQU $0004
  59. openResAsAllowed GEQU $0008
  60. noResourceMgr GEQU $0010 ;for ShutDownTools, too
  61.  
  62. mvReturn GEQU $0001 ; like ok for dialogs
  63. mvEscape GEQU $0002 ; like cancel for dialogs
  64. sysTool GEQU $0000
  65. userTool GEQU $8000
  66.  
  67. ; offset constants for MessageRec and MessageRecGS
  68. omessageNext GEQU 0
  69. omessageType GEQU 4
  70. omessageData GEQU 6
  71. omessagePrintFlag GEQU 6
  72. ofileNames GEQU 8
  73.  
  74. ; offset constants for ToolSpec
  75. otoolNumber GEQU 0
  76. ominVersion GEQU 2
  77.  
  78. ; offset constants for StartStopRecord
  79. oflags GEQU 0
  80. ovideoMode GEQU 2
  81. oresFileID GEQU 4
  82. odPageHandle GEQU 6
  83. onumTools GEQU 10
  84. otheTools GEQU 12
  85.